home *** CD-ROM | disk | FTP | other *** search
- // reg.h : main header file for the REG application
- //
-
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
-
- #include "resource.h" // main symbols
-
- /////////////////////////////////////////////////////////////////////////////
- // CRegApp:
- // See reg.cpp for the implementation of this class
- //
-
- class CRegDoc;
- class CMainFrame;
- class CRegView;
-
- class CRegApp : public CWinApp
- {
- public:
- CRegApp();
-
- CRegDoc *m_pDoc;
- CMainFrame *m_pFrame;
- CRegView *m_pView;
- CStringArray m_saParams;
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CRegApp)
- public:
- virtual BOOL InitInstance();
- virtual int ExitInstance();
- //}}AFX_VIRTUAL
- void ParseCmdLine(CString& sIniFile, CString& sContentFile, CString& sOutputFile);
- void ParseIniFile(CString sIniFile);
- void CreateResponse(CString sOutputFile, CString sIniFile);
-
- // Implementation
-
- //{{AFX_MSG(CRegApp)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
-
- /////////////////////////////////////////////////////////////////////////////
-